The FullScreenView object

The FullScreenView object is used to represent the view used to display the pictures in full-screen mode.

Properties:

xPosLongread-writex position of the view from the top left corner of the screen (generally 0).
yPosLongread-writey position of the view from the top left corner of the screen (generally 0).
wLongread-writewidth of the view.
hLongread-writeheight of the view.
picObjectread onlyThe picture currently displayed.
xOrgLongread-writeThe horizontal offset of the picture on the screen.
yOrgLongread-writeThe vertical offset of the picture on the screen.
zoomMultiplierLongread-writeThe zoom multiplier factor.
zoomDivisorLongread-writeThe zoom divisor factor (zoom = zoomMultiplier / zoomDivisor).
hWndLongread onlyThe HWND handle of the full-screen view.

Methods:

ModifySlideShowMode(lMode As Long, bSetOrClear As Bool) As Long
Alter the full screen mode (use the SS_xxx constants)

StopAllSounds(bIncludingCurrentPicture As Bool)
Stops all the currently playing and pending sounds.
Can be useful in a Play Command block to stop all sounds and start a new one (set the bIncludingCurrentPicture parameter to False).
Example:
      script|app.GetFullScreenView().StopAllSounds(False)|-|2
      media|D:\Musik\NewMusicFile.mp3
      *C

MoveImage (nCmd As Long, bCorners As Bool)
Validate picture position and redraw the full-screen view accordingly.
Use the virtual key codes VK_xxx for the nCmd parameter. Set bCorners to True to move the picture corners (with VK_HOME, VK_END, VK_PRIOR and VK_NEXT).